(update_end): Don't check updating_frame; for some reason
authorAndrew Innes <andrewi@gnu.org>
Fri, 5 Jan 2001 21:26:40 +0000 (21:26 +0000)
committerAndrew Innes <andrewi@gnu.org>
Fri, 5 Jan 2001 21:26:40 +0000 (21:26 +0000)
this can be 0 sometimes, such as after dismissing a popup menu,
and isn't necessary given the explicit frame argument.

src/term.c

index e7ee0959306da57a9f82cfc582ace10084b45bfe..3919f7e59e11a2bba7b523c0e4ff4276605aceaf 100644 (file)
@@ -507,7 +507,7 @@ void
 update_end (f)
      FRAME_PTR f;
 {
-  if (! FRAME_TERMCAP_P (updating_frame))
+  if (! FRAME_TERMCAP_P (f))
     {
       (*update_end_hook) (f);
       updating_frame = 0;